Signed-off-by: Camila Ayres <hello@camilasan.com>
configFile.setShowCallNotifications(settings->value(QLatin1String(showCallNotificationsC)).toBool());
configFile.setShowChatNotifications(settings->value(QLatin1String(showChatNotificationsC)).toBool());
configFile.setShowInExplorerNavigationPane(settings->value(QLatin1String(showInExplorerNavigationPaneC)).toBool());
- ClientProxy().setupQtProxyFromSettings(*settings);
+ ClientProxy().saveProxyConfigurationFromSettings(*settings);
// Try to load the single account.
if (!settings->childKeys().isEmpty()) {
}
}
-void ClientProxy::setupQtProxyFromSettings(const QSettings &settings)
+void ClientProxy::saveProxyConfigurationFromSettings(const QSettings &settings)
{
if (settings.value(QLatin1String(proxyTypeC)).isNull()) {
- qCInfo(lcClientProxy) << "No Proxy settings found.";
+ qCDebug(lcClientProxy) << "No Proxy settings found.";
return;
}
public slots:
void setupQtProxyFromConfig();
- void setupQtProxyFromSettings(const QSettings &settings);
+ void saveProxyConfigurationFromSettings(const QSettings &settings);
};
class OWNCLOUDSYNC_EXPORT SystemProxyRunnable : public QObject, public QRunnable